TryGetArray<T>(IPdfDict,PdfName,T[],Boolean) Method
In This Topic
Tries to get the array associated with the specified key, if the value does not exist or cannot be converted to an array of returns false.
Syntax
'Declaration
Public Overloads Shared Function TryGetArray(Of As IPdfObject)( _
ByVal As IPdfDict, _
ByVal As PdfName, _
ByRef () As , _
Optional ByVal As System.Boolean _
) As System.Boolean
public static System.bool TryGetArray<>(
IPdfDict ,
PdfName ,
out [] ,
System.bool
)
where T: IPdfObject
Parameters
- dict
- The current dictionary.
- key
- The key identifying the value.
- value
- OUT: The value.
- singleToArray
- Indicates whether to convert a single value to an array.
Type Parameters
- T
Return Value
true if value exists, false otherwise.
See Also